home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / ncurses-5.3.lha / ncurses-5.3 / menu / m_req_name.c < prev    next >
C/C++ Source or Header  |  2002-10-24  |  5KB  |  123 lines

  1. /****************************************************************************
  2.  * Copyright (c) 1998,2000 Free Software Foundation, Inc.                   *
  3.  *                                                                          *
  4.  * Permission is hereby granted, free of charge, to any person obtaining a  *
  5.  * copy of this software and associated documentation files (the            *
  6.  * "Software"), to deal in the Software without restriction, including      *
  7.  * without limitation the rights to use, copy, modify, merge, publish,      *
  8.  * distribute, distribute with modifications, sublicense, and/or sell       *
  9.  * copies of the Software, and to permit persons to whom the Software is    *
  10.  * furnished to do so, subject to the following conditions:                 *
  11.  *                                                                          *
  12.  * The above copyright notice and this permission notice shall be included  *
  13.  * in all copies or substantial portions of the Software.                   *
  14.  *                                                                          *
  15.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
  16.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
  17.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
  18.  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
  19.  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
  20.  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
  21.  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
  22.  *                                                                          *
  23.  * Except as contained in this notice, the name(s) of the above copyright   *
  24.  * holders shall not be used in advertising or otherwise to promote the     *
  25.  * sale, use or other dealings in this Software without prior written       *
  26.  * authorization.                                                           *
  27.  ****************************************************************************/
  28.  
  29. /****************************************************************************
  30.  *   Author:  Juergen Pfeifer, 1995,1997                                    *
  31.  *   Contact: http://www.familiepfeifer.de/Contact.aspx?Lang=en             *
  32.  ****************************************************************************/
  33.  
  34. /***************************************************************************
  35. * Module m_request_name                                                    *
  36. * Routines to handle external names of menu requests                       *
  37. ***************************************************************************/
  38.  
  39. #include "menu.priv.h"
  40.  
  41. MODULE_ID("$Id: m_req_name.c,v 1.14 2002/07/06 15:22:16 juergen Exp $")
  42.  
  43. static const char *request_names[ MAX_MENU_COMMAND - MIN_MENU_COMMAND + 1 ] = {
  44.   "LEFT_ITEM"    ,
  45.   "RIGHT_ITEM"   ,
  46.   "UP_ITEM"      ,
  47.   "DOWN_ITEM"    ,
  48.   "SCR_ULINE"    ,
  49.   "SCR_DLINE"    ,
  50.   "SCR_DPAGE"    ,
  51.   "SCR_UPAGE"    ,
  52.   "FIRST_ITEM"   ,
  53.   "LAST_ITEM"    ,
  54.   "NEXT_ITEM"    ,
  55.   "PREV_ITEM"    ,
  56.   "TOGGLE_ITEM"  ,
  57.   "CLEAR_PATTERN",
  58.   "BACK_PATTERN" ,
  59.   "NEXT_MATCH"   ,
  60.   "PREV_MATCH"          
  61. };
  62. #define A_SIZE (sizeof(request_names)/sizeof(request_names[0]))
  63.  
  64. /*---------------------------------------------------------------------------
  65. |   Facility      :  libnmenu  
  66. |   Function      :  const char * menu_request_name (int request);
  67. |   
  68. |   Description   :  Get the external name of a menu request.
  69. |
  70. |   Return Values :  Pointer to name      - on success
  71. |                    NULL                 - on invalid request code
  72. +--------------------------------------------------------------------------*/
  73. NCURSES_EXPORT(const char *)
  74. menu_request_name ( int request )
  75. {
  76.   if ( (request < MIN_MENU_COMMAND) || (request > MAX_MENU_COMMAND) )
  77.     {
  78.       SET_ERROR(E_BAD_ARGUMENT);
  79.       return (const char *)0;
  80.     }
  81.   else
  82.     return request_names[ request - MIN_MENU_COMMAND ];
  83. }
  84.  
  85.  
  86. /*---------------------------------------------------------------------------
  87. |   Facility      :  libnmenu  
  88. |   Function      :  int menu_request_by_name (const char *str);
  89. |   
  90. |   Description   :  Search for a request with this name.
  91. |
  92. |   Return Values :  Request Id       - on success
  93. |                    E_NO_MATCH       - request not found
  94. +--------------------------------------------------------------------------*/
  95. NCURSES_EXPORT(int)
  96. menu_request_by_name ( const char *str )
  97.   /* because the table is so small, it doesn't really hurt
  98.      to run sequentially through it.
  99.   */
  100.   unsigned int i = 0;
  101.   char buf[16];
  102.   
  103.   if (str)
  104.     {
  105.       strncpy(buf,str,sizeof(buf));
  106.       while( (i<sizeof(buf)) && (buf[i] != '\0') )
  107.     {
  108.       buf[i] = toupper(buf[i]);
  109.       i++;
  110.     }
  111.       
  112.       for (i=0; i < A_SIZE; i++)
  113.     {
  114.       if (strncmp(request_names[i],buf,sizeof(buf))==0)
  115.         return MIN_MENU_COMMAND + i;
  116.     } 
  117.     }
  118.   RETURN(E_NO_MATCH);
  119. }
  120.  
  121. /* m_req_name.c ends here */
  122.